Update rust-url with a contained bugfix
authorAlex Crichton <alex@alexcrichton.com>
Wed, 6 Aug 2014 23:11:18 +0000 (16:11 -0700)
committerAlex Crichton <alex@alexcrichton.com>
Thu, 7 Aug 2014 00:12:30 +0000 (17:12 -0700)
Cargo.lock
src/cargo/ops/cargo_test.rs
tests/test_cargo_generate_lockfile.rs

index cf681f64b2f2501f68284d6f23101283d215f8dc..496d5731b457f5269df60302d9e4f22f683c97aa 100644 (file)
@@ -7,7 +7,7 @@ dependencies = [
  "hamcrest 0.1.0 (git+https://github.com/carllerche/hamcrest-rust.git#c23b8769f20f306c59a96b22532bb09b33faa764)",
  "semver 0.0.1 (git+https://github.com/rust-lang/semver#e17191f51d543529a6f07e6731802b77977fcef8)",
  "toml 0.1.0 (git+https://github.com/alexcrichton/toml-rs#934e093047ae15432fcc772d4e01fdf5fd56d2fb)",
- "url 0.1.0 (git+https://github.com/servo/rust-url#ad61773abc56d812f8abe4bc78833f422a5f6a94)",
+ "url 0.1.0 (git+https://github.com/servo/rust-url#143d902a9c35694e0b4835313db238c3833f0f52)",
 ]
 
 [[package]]
@@ -46,7 +46,7 @@ source = "git+https://github.com/alexcrichton/toml-rs#934e093047ae15432fcc772d4e
 [[package]]
 name = "url"
 version = "0.1.0"
-source = "git+https://github.com/servo/rust-url#ad61773abc56d812f8abe4bc78833f422a5f6a94"
+source = "git+https://github.com/servo/rust-url#143d902a9c35694e0b4835313db238c3833f0f52"
 dependencies = [
  "encoding 0.1.0 (git+https://github.com/lifthrasiir/rust-encoding#eae7c261f50cfbdc699e9b234d2b13d4d255fd42)",
 ]
index 60257142e3cccc9cfef437d6d3d475f4ec7d542c..cc7d22fb6add0f6dc5a4b25ea1bdbcea3c1934bd 100644 (file)
@@ -8,7 +8,7 @@ use util::{process, CargoResult, ProcessError};
 pub fn run_tests(manifest_path: &Path,
                  options: &mut ops::CompileOptions,
                  args: &[String]) -> CargoResult<Option<ProcessError>> {
-    let mut source = PathSource::for_path(&manifest_path.dir_path());
+    let mut source = try!(PathSource::for_path(&manifest_path.dir_path()));
     try!(source.update());
     let package = try!(source.get_root_package());
 
index 0208bdd773dff11e7d4c8c2fe9066d615a91efd0..6ff7d5716f96c98e5670553689614c6472cc7816 100644 (file)
@@ -1,7 +1,6 @@
 use std::io::File;
 
 use support::{project, execs, cargo_dir, ResultTest};
-use support::paths::PathExt;
 use hamcrest::assert_that;
 
 fn setup() {}